home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / tasksel / tests / preferred-desktop < prev   
Text File  |  2009-10-22  |  419b  |  19 lines

  1. #!/bin/sh
  2. # Choose which desktop environment should be installed to enhance the desktop
  3. # task. tasksel/desktop can be preseeded to select which to install.
  4. set -e
  5.  
  6. # Avoid starting debconf if not being used to test which enhancing task to
  7. # install.
  8. if [ ! "$TESTING_ENHANCER" ]; then
  9.     exit 1
  10. fi
  11.  
  12. . /usr/share/debconf/confmodule
  13.  
  14. if db_get "tasksel/desktop" && echo "$RET" | grep -q "$2"; then
  15.     exit 0
  16. else
  17.     exit 1
  18. fi
  19.